home *** CD-ROM | disk | FTP | other *** search
- /* send a string to the JForth interpreter... */
-
- OPTIONS results
-
- parse arg theString /* get the argument */
- if (theString == "") then
- theString = '" JForth Professional just says HI!" $type cr'
-
- address 'JFORTH' theString
-
-